.navbar {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 1050;

}
.navbar-brand img {
  width: 80px;
  height: 80px;
}
.nav-link {
  color: #000000;
  font-weight: 400;
}
.help-buttons .register,
.custom-btn {
  font-size: 14px;
  border-radius: 12px;
  font-weight: 600;
  background-color: var(--third-color-heavy);
  color: var(--second-color);
  border-bottom: 4px solid var(--third-color-light);
  transition: all 0.3s ease;
}
.custom-btn:hover {
  background-color: var(--third-color-light);
  color: white;
  border-bottom: 4px solid var(--third-color-heavy);
  transform: scale(1.01);
}
.navy-btn {
  background-color: var(--main-color);
  color: var(--third-color-light);
  border-bottom: 4px solid #000000;
  transition: all 0.3s ease;
}
.navy-btn:hover {
  background-color: #000000;
  color: white;
  border-bottom: 4px solid var(--main-color);
  transform: scale(1.01);
}
.help-buttons .login {
  font-size: 14px;
  border-radius: 12px;
  font-weight: 600;
  background-color: var(--main-color);
  color: var(--third-color-heavy);
  border-bottom: 3px solid #000000;
}
.nav-link.active,
.nav-link:hover {
  color: var(--third-color-light) !important;
}
/* Add to your main.css */
/* Transparent navbar initial state */
.navbar.navbar-transparent {
  background: transparent !important;
  box-shadow: none !important;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* White navbar with shadow on scroll */
.navbar.navbar-scrolled {
  background: #fff !important;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.07) !important;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* ---------- */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;

}

.user-info {
  text-align: center;
}

.user-info .name,.user-info .phone  {
  font-weight:500;
  font-size: 14px;
   color: var(--second-color);
}

.avatar img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
}
/*  notifications*/
.bell-dropdown .bell {
  background-color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bell-dropdown .dot {
  position: absolute;
  top: 10px;
  left: 12px;
  width: 8px;
  height: 8px;
  background-color: #FFD43B;
  border-radius: 50%;
}

.dropdown-menu {
  min-width: 250px;


  font-size: 14px;
  border-radius: 10px;
  direction: rtl !important;

}
.notif-dropdown-menu {
    left: 0 !important;
    right: auto !important;
    top: 70px !important;
}

.dropdown-menu .dropdown-header {
  font-weight: bold;
  color: var(--main-color);
}

.dropdown-menu .dropdown-item {
  white-space: normal;
text-align: start;
font-weight: normal;
}
.dropdown-menu li {
  color: var(--second-color) !important;
  font-size: 14px !important;
  font-weight: normal;
}
